home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / Asuka / h / utils.h < prev   
Encoding:
C/C++ Source or Header  |  2007-10-13  |  1.1 KB  |  35 lines

  1. //    Asuka - VirtualDub Build/Post-Mortem Utility
  2. //    Copyright (C) 2005 Avery Lee
  3. //
  4. //    This program is free software; you can redistribute it and/or modify
  5. //    it under the terms of the GNU General Public License as published by
  6. //    the Free Software Foundation; either version 2 of the License, or
  7. //    (at your option) any later version.
  8. //
  9. //    This program is distributed in the hope that it will be useful,
  10. //    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. //    GNU General Public License for more details.
  13. //
  14. //    You should have received a copy of the GNU General Public License
  15. //    along with this program; if not, write to the Free Software
  16. //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. #ifndef f_ASUKA_UTILS_H
  19. #define f_ASUKA_UTILS_H
  20.  
  21. #include <vd2/system/vdtypes.h>
  22. #include <string>
  23.  
  24. void VDNORETURN help();
  25. void VDNORETURN fail(const char *format, ...);
  26.  
  27. void canonicalize_name(std::string& name);
  28. std::string get_name();
  29. int get_version();
  30. bool read_version();
  31. void inc_version();
  32. bool write_version();
  33.  
  34. #endif
  35.